Learn R Programming

Compositional (version 1.5)

Multivariate regression with compositional data: Multivariate regression with compositional data

Description

Multivariate regression with compositional data.

Usage

comp.reg(y, x, type = "classical", xnew = NULL, yb = NULL)

Arguments

y
A matrix with the compsitional data. Zero values are not allowed.
x
The predictor variable(s), they have to be continuous.
type
The type of regression to be used, "classical" for standard multivariate regression, "spatial" for spatial median regression, which is also robust.
xnew
This is by default set to NULL. If you have new data whose compositional data values you want to predict, put them here.
yb
If you have already transformed the data using the additive log-ratio transformation, plut it here. Othewrise leave it NULL. This is intended to be used in the function alfareg.tune in order to speed up the process.

Value

A list including:
runtime
The time required by the regression.
beta
The beta coefficients.
seb
The standard error of the beta coefficients.
est
The fitted values if xnew is NULL, or the predicted values otherwise.

Details

The additive log-ratio transformation is applied and then the chosen multivariate regression is implemented. The alr is easier to explain than the ilr and that is why the latter is avoided here.

References

Mardia K.V., Kent J.T., and Bibby J.M. (1979). Multivariate analysis. Academic press.

Aitchison J. (1986). The statistical analysis of compositional data. Chapman & Hall.

See Also

multivreg, spatmed.reg, js.compreg, diri.reg

Examples

Run this code
library(MASS)
y <- iris[, 1:3]
x <- iris[, 4]
mod1 <- comp.reg(y, x)
mod2 <- comp.reg(y, x, type = "spatial")

Run the code above in your browser using DataLab